begintalkscript;
variables;

begintalknode 1;
state = -1;
nextstate = 1;
condition = 1;
question = "Hira-Bok";
text1 = "You meet one of the mighty crystal souls of the vahnatai. They can't emit any sound, but they can hear and watch. If they are watching on people they can communicate via mind with them.";
text2 = "This one has got it's eyes on you. It says: _Hello, humans. I am Hira-Bok, once a vahnatai, now a crystal soul. What is it you want?_";
action = INTRO;
text5 = "_We meet again._";

begintalknode 2;
state = 1;
nextstate = 2;
condition = 1;
question = "Why have you set up a bunch of traps to make it harder to get to you?";
text1 = "_Because I don't want any trespassing. However, trespassers never make it this far, so I suppose you have a reason for being here._";

begintalknode 3;
state = 2;
nextstate = -1;
condition = get_flag(118, 3) == 0;
question = "Will I have to do the whole series of puzzles again if I return?";
text1 = "_No, thank you for reminding. I will create a portal which will appear only before you if you return._";
code = set_flag(118, 3, 1);
break;

begintalknode 4;
state = 1;
nextstate = 3;
condition = get_flag(104, 0) == 3;
question = "Rendar said that the Orb of Nar would be here. Can I get it?";
text1 = "_So that is what you want. Well, take it._ Hira-Bok uses telekinetic magic and summons the orb in front of you. You take it.";
code = set_flag(104, 0, 4);
       change_spec_item(2, 1);
break;

begintalknode 5;
state = 3;
nextstate = -1;
condition = 1;
question = "By the way, what did you want to do with the orb?";
text1 = "_We heard that it had powerful shaping abilities. You see, we are practising the dark art of shaping._";
text2 = "_However, the darkness doesn't forsake us because we don't use shaping for warfare. We use it for creating food._";

begintalknode 6;
state = 1;
nextstate = 1;
condition = 1;
question = "This doesn't look like the heart of the vahnatai realms. What way did you come here?";
text1 = "_From the far northwest realms, we wandered many hundred miles upleft. Then we found this river, and built settlements near it._";
text2 = "_This area is so remote that we can take a little liberties in the laws. For example, we do shaping but the other lands don't know it._";